home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / perl-modules.preinst < prev    next >
Text File  |  2009-10-01  |  275b  |  11 lines

  1. #!/bin/sh -e
  2.  
  3. # /etc/perl/Net/libnet.cfg mistakenly installed as /etc/Net in perl 5.8
  4. if [ "$1" = upgrade ] && [ -f /etc/Net ] && [ -x /usr/bin/md5sum ] &&
  5.    [ "$(/usr/bin/md5sum /etc/Net)" = "fb2946cae573b8ed3d654a180d458733  /etc/Net" ]
  6. then
  7.     rm -f /etc/Net
  8. fi
  9.  
  10. exit 0
  11.